home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-08-02 | 1.4 KB | 48 lines |
- #!smake
- #
- # Top level Makefile for xcontact
- #
- # "$Revision: $"
-
- include $(ROOT)/usr/include/make/commondefs
-
- SUBDIRS=\
- parody\
- src\
- resources\
- catman\
- $(NULL)
- # onlineHelp\
- # $(NULL)
- # toolbox janitor's note: the above two lines were commented out (and
- # 7/26/94 a replica "$(NULL)" line created above), cuz
- # something's wrong with the way Make descends
- # into the onlineHelp tree. IF one goes into
- # onlineHelp, one *can* manually make things.
- # if anyone figures out why this is broken
- # when make descends from above onlineHelp,
- # please enlighten the janitor via e-mail at
- # dave@sgi.com, voice 415/960-3556, or by fax
- # 415/967-6239 and he will be forever in yer
- # debt.
- # note#2: for onlineHelp to successfully compile, one
- # must have the toolbox/utilities/sgihelp_dev
- # subsystem loaded so the /usr/include/make
- # commonhelpdefs can be accessed.
-
- .PRECIOUS: $(SUBDIRS)
-
- COMMONPREF=xcontact
-
- default install $(COMMONTARGS):
- @for d in $(SUBDIRS); do \
- echo "=\tcd $$d; $(MAKE) $@"; \
- cd $$d; $(MAKE) $@; cd ..; \
- done
-
-
- $(SUBDIRS): $(_FORCE)
- cd $@; $(MAKE)
-
- include $(COMMONRULES)
-